From: Gerd Moellmann Date: Fri, 20 Jul 2001 09:35:17 +0000 (+0000) Subject: (x_fill_stretch_glyph_string): Remove an assertion. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~62679 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=c296fc0108b4a7c7b59bfb208da32d33d5c3fcb5;p=emacs.git (x_fill_stretch_glyph_string): Remove an assertion. --- diff --git a/src/xterm.c b/src/xterm.c index d291898c3e8..be86909b23b 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -4773,7 +4773,9 @@ x_fill_stretch_glyph_string (s, row, area, start, end) /* Adjust base line for subscript/superscript text. */ s->ybase += voffset; - xassert (s->face && s->face->gc); + /* The case that face->gc == 0 is handled when drawing the glyph + string by calling PREPARE_FACE_FOR_DISPLAY. */ + xassert (s->face); return glyph - s->row->glyphs[s->area]; }